home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 5 #4 / The SelectWare System Volume 5 #4.iso / acc20005 / swtdemo.bat < prev    next >
DOS Batch File  |  1993-08-25  |  725b  |  32 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo This demo will be installed to a directory on your hard drive. 
  5. echo The name and location of this directory will be your choosing.
  6. echo In order to run the demo you must:
  7. echo      1. Exit the Demonstration system.
  8. echo      2. Go to the Installed Directory.
  9. echo      3. Type gpudemo
  10. echo.
  11. echo Note:   A copy of your COMMAND.COM file must be located in the root 
  12. echo directory of your C: drive. 
  13. echo.      
  14. :start
  15. echo Enter selection.
  16. echo   1. Continue with installation
  17. echo   2. Exit
  18. echo.
  19. query.exe
  20. IF ERRORLEVEL 3 goto error
  21. IF ERRORLEVEL 2 goto end
  22. IF ERRORLEVEL 1 goto run
  23. :error
  24. echo Error in input  Enter 1 or 2 
  25. echo.
  26. GOTO start
  27.  
  28. :run
  29. INSTALL.EXE
  30.  
  31. :end
  32.